home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / KSLIB11.ARJ / CF.H < prev    next >
Text File  |  1991-10-14  |  369b  |  21 lines

  1. #define CFCHECKINIT if (!CFinited) CFinit();
  2.  
  3. #define MAXCOLOR    15
  4.  
  5. struct    CFdata    {
  6.     char    typ;
  7.     char    *cmd;
  8.     void    *arg;
  9. };
  10.  
  11. typedef struct CFdata CFdata;
  12.  
  13. int        CFcolcvt(char *);
  14. int        CFcolval(char *);
  15. char    *CFcolor(int);
  16. void    CFinit(void);
  17. int        CFopen(char *);
  18. int        CFread(char *,char *);
  19. int        CFconf(char *,CFdata *);
  20. int        CFwrite(char *,CFdata *);
  21.